/* body */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #5a727a;
    color: #ededed;
} 



/* navbar */



.header {
    position: fixed;
    top:0;
    left: 0;
    width: 100%;
    padding: 20px 8%;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    position: relative;
    text-decoration: none;
    color: #ededed;
    font-size: 23px;
    font-weight: 700;
}


.logo::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #7696a1;
    animation: showRight 1s forwards;
    animation-delay: .2s;
}


.navbar a {
    letter-spacing: 1.2px;
    text-decoration: none;
    font-size: 19px;
    color: #ededed;
    font-weight: 500;
    margin-left: 35px;
}

.navbar a:hover, .navbar a.active  {
    color: #00abf0;
    border-bottom: 2px solid #00abf0;

}

/* content */

.contact > h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact > h3 {
    border-bottom: 2px solid;
}

.contact {
    display: grid;
    position: relative;
    justify-content: center;
    margin-top: 10%;
    text-align: center;
}

.my_info {
    position: relative;
    line-height: 3;
    letter-spacing: 1.5px;
}

.my_info > p > a {
    color: #00abf0;
    font-weight: 500;
}

.my_info::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #7696a1;
    animation: showRight 1s forwards;
    animation-delay: .3s;
}


.contact h1::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #7696a1;
    animation: showRight 1s forwards;
    animation-delay: .2s;
}











@keyframes showRight {
    100% {
        width: 0;
    }
}
